home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / idt.zip / STOI.C < prev    next >
Text File  |  1988-06-11  |  184b  |  16 lines

  1. /*
  2. ** STOI.C    More powerful version of atoi.
  3. */
  4.  
  5. int        stoi( char ** );
  6. long        stol( char ** );
  7.  
  8. int        stoi( instr )
  9.  
  10. char    **instr;
  11.  
  12.     {
  13.     return ( (int) stol( instr ) );
  14.     }
  15.  
  16.